home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2006 April / DPPRO0406DVD.ISO / Essentials / Programming / Eclipse SDK / eclipse-SDK-3.1.1-win32.exe / eclipse / plugins / org.eclipse.help.webapp_3.1.0 / advanced / tree.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2005-09-29  |  1.6 KB  |  96 lines

  1. /*******************************************************************************
  2.  * Copyright (c) 2000, 2004 IBM Corporation and others.
  3.  * All rights reserved. This program and the accompanying materials 
  4.  * are made available under the terms of the Eclipse Public License v1.0
  5.  * which accompanies this distribution, and is available at
  6.  * http://www.eclipse.org/legal/epl-v10.html
  7.  * 
  8.  * Contributors:
  9.  *     IBM Corporation - initial API and implementation
  10.  *******************************************************************************/
  11.  
  12. BODY {
  13.     background-color: <%=prefs.getViewBackground()%>;
  14.     font: <%=prefs.getViewFont()%>;
  15.     margin:0;
  16.     padding:0;
  17.     border:0;
  18. }
  19.  
  20. UL { 
  21.     border-width:0; 
  22.     margin-<%=isRTL?"right":"left"%>:20px; 
  23. }
  24.  
  25. #root {
  26.     margin-top:5px;
  27.     margin-<%=isRTL?"right":"left"%>:5px;
  28. }
  29.   
  30. UL.expanded {
  31.     display:block; 
  32. }
  33.  
  34. UL.collapsed { 
  35.     display: none;
  36. }
  37.  
  38. LI { 
  39.     margin-top:3px; 
  40.     list-style-image:none;
  41.     list-style-type:none;
  42.         white-space: nowrap;
  43. }
  44.  
  45. IMG {
  46.     border:0px;
  47.     margin:0px;
  48.     padding:0px;
  49.     margin-<%=isRTL?"left":"right"%>:4px;
  50. }
  51.  
  52.  
  53. A {
  54.     text-decoration:none; 
  55.     color:WindowText;
  56.     padding-<%=isRTL?"left":"right"%>:2px;
  57.     /* this works in ie5.5, but not in ie5.0  */
  58.     white-space: nowrap;
  59. }
  60.  
  61. A:hover{
  62.     text-decoration:underline; 
  63. }
  64.  
  65. A.active{ 
  66.     background:Highlight;
  67.     color:HighlightText;
  68.     width:100%;
  69. }
  70.  
  71. A.active:hover{
  72.     text-decoration:underline; 
  73.     background:Highlight;
  74.     color:HighlightText;
  75.     width:100%;
  76. }
  77.  
  78. <% 
  79. if (data.isMozilla()){
  80. %>
  81. UL { 
  82.     margin-<%=isRTL?"right":"left"%>:-20px;
  83. #root{ 
  84.     margin-<%=isRTL?"right":"left"%>:-35px; 
  85.     margin-top:5px;
  86.  
  87. <%
  88. }
  89. %>
  90.  
  91. .h {
  92.     visibility:hidden;
  93. }
  94.